projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3b43fc
)
* lisp/mail/rmail.el (rmail-reply):
author
Glenn Morris
<rgm@gnu.org>
Mon, 27 Apr 2015 21:18:39 +0000
(17:18 -0400)
committer
Glenn Morris
<rgm@gnu.org>
Mon, 27 Apr 2015 21:18:39 +0000
(17:18 -0400)
Decode subject before matching "Re:" prefix. (Bug#20396)
lisp/mail/rmail.el
patch
|
blob
|
history
diff --git
a/lisp/mail/rmail.el
b/lisp/mail/rmail.el
index 7efcf695b24fd013979a5fe4f55f82d9d9398242..43abc128c8af48d5f80503400199905f28fe8335 100644
(file)
--- a/
lisp/mail/rmail.el
+++ b/
lisp/mail/rmail.el
@@
-3830,7
+3830,8
@@
use \\[mail-yank-original] to yank the original message into it."
;;; (setq cc resent-cc)))
;; Add `Re: ' to subject if not there already.
(and (stringp subject)
- (setq subject
+ (setq subject (rfc2047-decode-string subject)
+ subject
(concat rmail-reply-prefix
(if (let ((case-fold-search t))
(string-match rmail-reply-regexp subject))